home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-06-24 | 322 b | 27 lines | [TEXT/MPCC] |
- // DrawPoint.h
-
- #pragma once
-
-
- #include "InPoint.h"
-
- class APane;
-
-
- class DrawPoint :
- public InPoint
- {
- protected:
- APane *fPane;
- public:
- DrawPoint(
- const char *protocol,
- const char *address,
- short port,
- APane *aPane);
-
- void DoSomethingWithTheData(
- void *data,
- long size);
- };
-